/* technology.css - Bespoke Architecture */

.unique-tech {
    background-color: var(--primary-dark, #05050f);
    color: white;
}

.tech-grid {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.tech-card {
    background: #0a0a1a;
    border: 1px solid rgba(0, 255, 204, 0.2);
    padding: 40px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.05);
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.2);
    border-color: #00ffcc;
}

.t-icon {
    font-size: 3rem;
    color: #00ffcc;
    margin-bottom: 20px;
}

.tech-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.tech-card p {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

.tech-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #00ffcc;
    transition: width 0.4s ease;
}

.tech-card:hover .tech-bar {
    width: 100%;
}
